• Description:
    With 'MODULE' keyword you can insert any of #?.m or #?.d files. When you use more modules with same name, only the first one will be processed. This keyword can be used only outside of procedures. Modules should be in 'DMODULES:' assigned directory (see: installation), but it is possible to insert before module name full path leading with '*' sign (see below).

  • Syntax:
      MODULE 'module1','*module2',...
    
  • Examples:
      MODULE 'dos'
    

    will try to open file 'DMODULES:dos' or 'DMODULES:dos.b' or 'DMODULES:dos.m' or 'DMODULES:dos.d', whereas
      MODULE '*HD5:Sources/module.m'
    

    will try to open only 'HD5:Sources/module.m'.